home *** CD-ROM | disk | FTP | other *** search
/ Electronic Print Media Service 1998 April / Electronic Print Media Service 1998 April.iso / Ideasrc / dream.DIR / 00102_Script_102 < prev    next >
Text File  |  1998-02-04  |  381b  |  21 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   if not rollover(3) then go to frame "s"
  6.   
  7.     repeat with n=11 to 15
  8.     if rollover(n) then
  9.       set the visible of sprite n to false
  10.       updatestage
  11.     end if
  12.   end repeat
  13.   
  14.   repeat with n=11 to 15
  15.     if not rollover(n) then
  16.       set the visible of sprite n to true
  17.       updatestage
  18.     end if
  19.   end repeat
  20.   
  21. end